home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / UI / UIDefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  700 b   |  34 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        UIDefs.h
  3.  
  4.     Contains:    Constants which are used by code & resources for the UI Subsystem
  5.  
  6.     Owned by:    Richard Rodseth
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     8/11/95    jpa        Number rsrcs from subsystem base [1276412]
  13.          <2>     6/29/95    jpa        Added kODDesktopTitleStrID [1262681]
  14.          <1>     5/4/95    eeh        1242889: First Checked In.
  15.  
  16.     In Progress:
  17.         
  18. */
  19.  
  20. #ifndef _UIDEFS_
  21. #define _UIDEFS_
  22.  
  23. #ifndef _RSRCBASE_
  24. #include "RsrcBase.h"
  25. #endif
  26.  
  27. /* the " Draft " string that gets used for drafts opened into windows */
  28.  
  29. #define kODDraftTextResID        (kODUIRsrcBase + 0)
  30.  
  31. #define kODDesktopTitleStrID    (kODUIRsrcBase + 1)
  32.  
  33. #endif    /* _UIDEFS_ */
  34.